}
public void setWidth (float width) {
float oldWidth = this.width;
this.width = width;
if (width != oldWidth) sizeChanged();
}
public float getHeight () {
return width;
}
public void setWidth (float width) {
if (this.width != width) {
this.width = width;
sizeChanged();
}
}